-
Notifications
You must be signed in to change notification settings - Fork 119
Fixes Error prone null checks in Pipelines batch submodule #1484
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## master #1484 +/- ##
============================================
- Coverage 46.66% 46.54% -0.13%
- Complexity 676 677 +1
============================================
Files 90 90
Lines 5874 5898 +24
Branches 814 826 +12
============================================
+ Hits 2741 2745 +4
- Misses 2828 2845 +17
- Partials 305 308 +3 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
bashir2
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @ndegwamartin for the changes.
pipelines/batch/src/main/java/com/google/fhir/analytics/metrics/FlinkJobListener.java
Outdated
Show resolved
Hide resolved
pipelines/batch/src/main/java/com/google/fhir/analytics/ConvertResourceFn.java
Outdated
Show resolved
Hide resolved
pipelines/batch/src/main/java/com/google/fhir/analytics/FetchResources.java
Outdated
Show resolved
Hide resolved
pipelines/batch/src/main/java/com/google/fhir/analytics/FetchSearchPageFn.java
Show resolved
Hide resolved
pipelines/batch/src/main/java/com/google/fhir/analytics/JdbcResourceWriter.java
Outdated
Show resolved
Hide resolved
pipelines/batch/src/main/java/com/google/fhir/analytics/ParquetMerger.java
Outdated
Show resolved
Hide resolved
pipelines/batch/src/main/java/com/google/fhir/analytics/ProcessGenericRecords.java
Outdated
Show resolved
Hide resolved
pipelines/batch/src/main/java/com/google/fhir/analytics/ParquetMerger.java
Outdated
Show resolved
Hide resolved
bashir2
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the changes @ndegwamartin; please feel free to merge this once the minor remaining comments are addressed.
pipelines/batch/src/main/java/com/google/fhir/analytics/FetchSearchPageFn.java
Show resolved
Hide resolved
pipelines/batch/src/main/java/com/google/fhir/analytics/ParquetMerger.java
Outdated
Show resolved
Hide resolved
|
/gcbrun |
|
/gcbrun |
|
The e2e test succeeded on this a few minutes ago, here is the Cloud Build link (not sure why GitHub is not picking that up); merging ... |
Description of what I changed
Ticket #1474
E2E test
TESTED:
Please replace this with a description of how you tested your PR beyond the
automated e2e/unit tests.
Checklist: I completed these to help reviewers :)
I have read and will follow the
review process.
I am familiar with Google Style Guides for the language I have coded in.
No? Please take some time and review
Java and
Python style guides.
My IDE is configured to follow the Google
code styles.
No? Unsure? ->
configure your IDE.
I have added tests to cover my changes. (If you refactored existing
code that was well tested you do not have to add tests)
I ran
mvn clean packageright before creating this pull request andadded all formatting changes to my commit.
If I made any Python code changes, I ran
black .andpylint .rightbefore creating this pull request and added all formatting changes to my
commit.
All new and existing tests passed.
My pull request is based on the latest changes of the master branch.
No? Unsure? -> execute command
git pull --rebase upstream master